home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 March - Disc 1 / Macworld (1999-03) (Disk 1).dmg / Shareware World / Utilities / Text Processing / Alpha / Tcl / Modes / latex Mode / latexMenu.tcl < prev    next >
Encoding:
Text File  |  1998-07-23  |  37.1 KB  |  1,571 lines  |  [TEXT/ALFA]

  1. #############################################################################
  2. #############################################################################
  3. #
  4. # latexMenu.tcl (called from latex.tcl)
  5. #
  6. # LaTeX menu definitions and key bindings
  7. #
  8. #############################################################################
  9. #
  10. # Author:  Tom Scavo <trscavo@syr.edu>, Vince Darley <darley@fas.harvard.edu>
  11. #
  12. #############################################################################
  13. #############################################################################
  14.  
  15. proc latexMenu.tcl {} {}
  16.  
  17. namespace eval TeX::sub {}
  18. namespace eval TeX::mp {}
  19.  
  20. # The highest level menu macro, to be called initially or whenever 
  21. # the LaTeX menu must be rebuilt (as in 'shadowtexSig' in latex.tcl,
  22. # or 'toggleLaTeXMenus' below): (simplified VMD July 97)
  23. proc buildLaTeXMenuQuietly {} {
  24.     global texMenu useShortLaTeXMenu useAMSLaTeX TeX::Menus
  25.     toggleAMSLaTeXmenus
  26.     TeX::sub::MathModes
  27.     
  28.     menu::buildProc texMenu buildLaTeXMenu
  29.     menu::buildSome texMenu
  30.     markMenuItem {LaTeX Utilities} {Short LaTeX Menu} $useShortLaTeXMenu
  31.     markMenuItem {LaTeX Utilities} {AMS-LaTeX} $useAMSLaTeX
  32. }
  33.  
  34. # Toggle the short menu flag and rebuild the LaTeX menu.  If the
  35. # latter operation fails, toggle the flag back to its original position.
  36. proc toggleLaTeXMenus {} {
  37.     toggleLaTeXMenuItem useShortLaTeXMenu
  38.     buildLaTeXMenuQuietly
  39. }
  40. # Toggle the AMS-LaTeX flag, reload the macros and menu, and rebuild 
  41. # the LaTeX menu.  If either of the latter two operations fail, toggle
  42. # the flag back to its original position.
  43. proc toggleAMSLaTeX {} {
  44.     global useAMSLaTeX
  45.     toggleLaTeXMenuItem useAMSLaTeX
  46.     toggleAMSLaTeXmenus
  47.     markMenuItem {LaTeX Utilities} {AMS-LaTeX} $useAMSLaTeX
  48.     menu::buildSome "Math Style" "Text Size" "Math Environments"
  49. }
  50.  
  51. proc toggleLaTeXMenuItem {flag} {
  52.     global $flag modifiedVars
  53.     set $flag [expr 1 - [set $flag]]
  54.     lappend modifiedVars $flag
  55. }
  56.  
  57. proc listToDummySubmenus {l} {
  58.     foreach i $l {
  59.     lappend ret [list Menu -n $i {}]
  60.     }
  61.     return $ret
  62. }
  63.  
  64. # Return a short menu or a long menu, depending on the value of
  65. # the global variable 'useShortLaTeXMenu':
  66. proc buildLaTeXMenu {} {
  67.     global useShortLaTeXMenu TeX::Menus texMenu
  68.     if {$useShortLaTeXMenu} {
  69.     return [list build [concat \
  70.       [listToDummySubmenus [set TeX::Menus(Top)]] \
  71.       [list "LaTeX Help"] \
  72.       {(-} \
  73.       [listToDummySubmenus [set TeX::Menus(Bottom)]] \
  74.       [listToDummySubmenus [list "Text Submenus" "Math Submenus"]] \
  75.       ] \
  76.       {TeX::mp::latex -M TeX -m} \
  77.       [concat [set TeX::Menus(Top)] [set TeX::Menus(Bottom)] \
  78.       [list "Text Submenus" "Math Submenus"]] \
  79.       $texMenu]
  80.     } else {
  81.     return [list build [concat \
  82.       [listToDummySubmenus [set TeX::Menus(Top)]] \
  83.       [list "LaTeX Help"] \
  84.       {(-} \
  85.       [listToDummySubmenus [set TeX::Menus(Bottom)]] \
  86.       {(-} \
  87.       [listToDummySubmenus [set TeX::Menus(TextSubMenus)]] \
  88.       {(-} \
  89.       [listToDummySubmenus [set TeX::Menus(MathSubMenus)]] \
  90.       ] \
  91.       {TeX::mp::latex -M TeX -m} \
  92.       [concat [set TeX::Menus(Top)] [set TeX::Menus(Bottom)] \
  93.       [set TeX::Menus(TextSubMenus)] [set TeX::Menus(MathSubMenus)]] \
  94.       $texMenu]
  95.     }
  96. menu::buildProc "Math Submenus" TeX::sub::Math
  97. menu::buildProc "Text Submenus" TeX::sub::Text
  98. menu::buildProc Typeset TeX::sub::Typeset
  99. menu::buildProc TypesetOtherFiles TeX::sub::TypesetOtherFiles
  100. proc TeX::sub::Math {} {
  101.     global TeX::Menus
  102.     return [list build \
  103.       [listToDummySubmenus [set TeX::Menus(MathSubMenus)]] \
  104.       {dummy -M TeX -m} \
  105.       [set TeX::Menus(MathSubMenus)] \
  106.       {Math Submenus}]
  107. }
  108. proc TeX::sub::Text {} {
  109.     global TeX::Menus
  110.     return [list build \
  111.       [listToDummySubmenus [set TeX::Menus(TextSubMenus)]] \
  112.       {dummy -M TeX -m} \
  113.       [set TeX::Menus(TextSubMenus)] \
  114.       {Text Submenus}]
  115. }
  116.  
  117. ensureset TeX::Menus(TextSubMenus) [list \
  118.   "Text Style" "Text Size" "Text Commands" "International" \
  119.   "Environments" "Boxes" "Miscellaneous"\
  120.   ]
  121.  
  122. ensureset TeX::Menus(Top) [list "Typeset" "Goto" "LaTeX Utilities"]
  123.  
  124. ensureset TeX::Menus(Bottom) [list "Documents" "Page Layout" \
  125.   "Sectioning" "Theorem"]
  126.  
  127. ensureset TeX::Menus(MathSubMenus) [list \
  128.   "Math Modes" "Math Style" "Math Environments" "Formulas" "Greek"  \
  129.   "Binary Operators" "Relations" "Arrows" "Dots" "Symbols" \
  130.   "Functions" "Large Operators" "Delimiters" "Math Accents" \
  131.   "Grouping" "Spacing" \
  132.   ]
  133.  
  134. proc TeX::mp::latex {menu item} {
  135.     switch $item {
  136.     {LaTeX Help}  {set func {global HOME; edit -r [file join $HOME Help "LaTeX Help"]}}
  137.     default {set func $item}
  138.     }
  139.     eval $func
  140. }
  141.  
  142. #############################################################################
  143. #
  144. # Submenu definitions
  145. #
  146. #############################################################################
  147.  
  148. # Return the "Typeset" submenu.  If the current document belongs
  149. # to a TeX fileset, display the base filename throughout.
  150. #
  151. proc TeX::sub::Typeset {{currentWin ""}} {
  152.     global mode TeXmodeVars
  153.     if {$currentWin == ""} {set currentWin [win::Current]}
  154.     if {$currentWin == ""} {
  155.     return [TeX::sub::MinimalTypeset]
  156.     } elseif { $mode == "TeX" } {
  157.     set currentDoc [file tail $currentWin]
  158.     # Process an untitled window:
  159.     if { [set num [winUntitled]] } {
  160.         if { $num > 1 } { set currentDoc "Untitled$num" }
  161.         # fall through
  162.     }
  163.     } else {
  164.     return [TeX::sub::MinimalTypeset]
  165.     }
  166.     set docBasename [file rootname $currentDoc]
  167.     set projBasename $docBasename
  168.     set currentProj [isWindowInFileset $currentWin "tex"]
  169.     if {    $currentProj !=    "" } {
  170.     set currentDoc [file tail [texFilesetBaseName $currentProj]]
  171.     set docBasename [file rootname $currentDoc]
  172.     }
  173.     # Determine which menu items are dimmed:
  174.     foreach ext {DVI PS AUX IDX GLO Selection} { set prefix$ext "" }
  175.     set ma [list \
  176.       {Menu -n "Format" {}} \
  177.       "(-"]
  178.     if $TeXmodeVars(runTeXInBack) {
  179.     lappend ma [list /TBack Typeset $currentDoc] \
  180.       [list /T<U<ITypeset $currentDoc]
  181.     } else {
  182.     lappend ma [list /TTypeset $currentDoc] \
  183.       [list /T<U<IBack Typeset $currentDoc]
  184.     }
  185.     lappend ma \
  186.       [list <U<O/V${prefixDVI}View "$docBasename\.dvi"] \
  187.       [list <U<O/P${prefixDVI}Print "$docBasename\.dvi"] \
  188.       "(-" \
  189.       {<U<O/TTypeset Clipboard} \
  190.       [list ${prefixSelection}<U<I<O/TTypeset Selection] \
  191.       "(-" \
  192.       [list <S${prefixPS}Open "$docBasename\.ps"] \
  193.       [list <S${prefixDVI}dvips "$docBasename\.dvi"] \
  194.       [list ${prefixPS}View "$docBasename\.ps"] \
  195.       [list ${prefixPS}Print "$docBasename\.ps"] \
  196.       "(-" \
  197.       [list <SOpen "$docBasename\.bbl"] \
  198.       [list <S${prefixAUX}bibtex "$docBasename\.aux"] \
  199.       [list <E<SOpen "$docBasename\.ind"] \
  200.       [list <S${prefixIDX}makeindex "$docBasename\.idx"] \
  201.       [list <E<SOpen "$docBasename\.glo"] \
  202.       [list <S${prefixGLO}makeglossary "$docBasename\.glo"] \
  203.       "(-" \
  204.       {Menu -n "Other Files" {}} \
  205.       "(-" \
  206.       {Remove Auxiliary Files…} \
  207.       {Remove Temporary Files}
  208.     return [list build $ma {TeX::mp::typesetmenu -M TeX -m} \
  209.       {Format TypesetOtherFiles}]
  210. }
  211.  
  212. proc TeX::sub::MinimalTypeset {} {
  213.     set ma [list \
  214.       [list /TTypeset…] \
  215.       "(-" \
  216.       {<U<O/TTypeset Clipboard} \
  217.       {Typeset Selection} \
  218.       ]
  219.     return [list build $ma {TeX::mp::typesetmenu -M TeX -m}]
  220. }
  221. # Return a submenu of LaTeX formats:
  222.  
  223. set "menu::proc(Format)" TeX::Format
  224. set "menu::otherflags(Format)" {-M TeX -m}
  225. set "menu::items(Format)" {
  226.     "LaTeX"
  227.     "Big-LaTeX"
  228.     "AMS-TeX"
  229.     "Plain TeX"
  230. }
  231.  
  232. # Return a submenu of LaTeX auxiliary files with basename $basename1,
  233. # except for the .aux file whose primary basename is $basename2.
  234. #
  235.  
  236. proc TeX::sub::TypesetOtherFiles {} {
  237.     set currentWin [win::Current]
  238.     set currentDoc [file tail $currentWin]
  239.     set docBasename [file rootname $currentDoc]
  240.     set projBasename $docBasename
  241.     set currentProj [isWindowInFileset $currentWin "tex"]
  242.     if {$currentProj !=    ""} {
  243.     set currentDoc [file tail [texFilesetBaseName $currentProj]]
  244.     set docBasename [file rootname $currentDoc]
  245.     }
  246.     set ma [list \
  247.       [list Open "$docBasename\.log"] \
  248.       [concat <SOpen "$docBasename\.aux "] \
  249.       [concat <SOpen "$projBasename\.aux"] \
  250.       [list Open "$docBasename\.toc"] \
  251.       [list Open "$docBasename\.lof"] \
  252.       [list Open "$docBasename\.lot"] \
  253.       [list Open "$docBasename\.idx"] \
  254.       [list Open "$docBasename\.bbl"] \
  255.       "(-" \
  256.       [list Open "$docBasename\.blg"] \
  257.       [list Open "$docBasename\.ilg"] \
  258.       "(-" \
  259.       {<U<O/OOpen Any TeX File…} \
  260.       ]
  261.     return [list build $ma {TeX::mp::typesetmenu -M TeX -m} \
  262.       "" {Other Files}]
  263.     ]
  264. }
  265. proc TeX::mp::typesetmenu {submenu item} {
  266.     switch -regexp $item {
  267.     {Typeset Selection}  {set func "typesetSelection"}
  268.     {Typeset Clipboard}  {set func "typesetClipboard"}
  269.     "Back\ Typeset.*"    {set func "typeset 1"}
  270.     "Typeset.*"  {set func "typeset"}
  271.     "View.*\.dvi$"  {set func {doTypesetCommand view DVI}}
  272.     "Print.*\.dvi$"  {set func {doTypesetCommand print DVI}}
  273.     "dvips.*\.dvi$"  {set func {doTypesetCommand dvips DVI}}
  274.     "View.*\.ps$"  {set func {doTypesetCommand view PS}}
  275.     "Print.*\.ps$"  {set func {doTypesetCommand print PS}}
  276.     "bibtex.*"  {set func {doTypesetCommand bibtex AUX}}
  277.     "makeindex.*"  {set func {doTypesetCommand makeindex IDX}}
  278.     "makeglossary.*"  {set func {doTypesetCommand makeindex GLO}}
  279.     "Open.*\.ps$"  {set func {doTypesetCommand open PS}}
  280.     "Open.*\.bbl$"  {set func {doTypesetCommand open BBL}}
  281.     "Open.*\.ind$"  {set func {doTypesetCommand open IND}}
  282.     "Open.*\.log$"  {set func {doTypesetCommand open LOG}}
  283.     "Open.*\.aux$"  {set func {doTypesetCommand open AUX 1}}
  284.     "Open.*\.aux $"  {set func {doTypesetCommand open AUX}}
  285.     "Open.*\.toc$"  {set func {doTypesetCommand open TOC}}
  286.     "Open.*\.lof$"  {set func {doTypesetCommand open LOF}}
  287.     "Open.*\.lot$"  {set func {doTypesetCommand open LOT}}
  288.     "Open.*\.idx$"  {set func {doTypesetCommand open IDX}}
  289.     "Open.*\.blg$"  {set func {doTypesetCommand open BLG}}
  290.     "Open.*\.ilg$"  {set func {doTypesetCommand open ILG}}
  291.     "Open.*\.glo$"  {set func {doTypesetCommand open GLO}}
  292.     {Open Any TeX File}  {set func "openAnyTeXFile"}
  293.     {Remove Auxiliary Files}  {set func "removeAuxiliaryFiles"}
  294.     {Remove Temporary Files}  {set func "removeTemporaryFiles"}
  295.     default {set func $item}
  296.     }
  297.     eval $func
  298. }
  299.  
  300. # Return the "Goto" submenu:
  301. set menu::proc(Goto) TeX::mp::goto
  302. set menu::otherflags(Goto) {-M TeX -m}
  303. set menu::items(Goto) {
  304.     "<U/SLaTeX"
  305.     "BibTeX"
  306.     "MakeIndex"
  307.     "(-"
  308.     {Next Template Stop}
  309.     {Prev Template Stop}
  310.     "(-"
  311.     {Next Command}
  312.     {Prev Command}
  313.     {Next Command Select}
  314.     {Prev Command Select}
  315.     {Next Command Select With Args}
  316.     {Prev Command Select With Args}
  317.     "(-"
  318.     {Next Environment}
  319.     {Prev Environment}
  320.     {Next Environment Select}
  321.     {Prev Environment Select}
  322.     "(-"
  323.     {Next Section}
  324.     {Prev Section}
  325.     {Next Section Select}
  326.     {Prev Section Select}
  327.     {Next Subsection}
  328.     {Prev Subsection}
  329.     {Next Subsection Select}
  330.     {Prev Subsection Select}
  331. }
  332.  
  333. proc TeX::mp::goto {submenu item} {
  334.     switch $item {
  335.     "LaTeX"  {set func "texApp TeX"}
  336.     "BibTeX" - "MakeIndex" {set func "texApp $item"}
  337.     {Next Template Stop}  {set func "ring::+"}
  338.     {Prev Template Stop}  {set func "ring::-"}
  339.     {Next Command}  {set func "nextCommand"}
  340.     {Prev Command}  {set func "prevCommand"}
  341.     {Next Command Select}  {set func "nextCommandSelect"}
  342.     {Prev Command Select}  {set func "prevCommandSelect"}
  343.     {Next Command Select With Args}  {set func "nextCommandSelectWithArgs"}
  344.     {Prev Command Select With Args}  {set func "prevCommandSelectWithArgs"}
  345.     {Next Environment}  {set func "nextEnvironment"}
  346.     {Prev Environment}  {set func "prevEnvironment"}
  347.     {Next Environment Select}  {set func "nextEnvironmentSelect"}
  348.     {Prev Environment Select}  {set func "prevEnvironmentSelect"}
  349.     {Next Section}  {set func "nextSection"}
  350.     {Prev Section}  {set func "prevSection"}
  351.     {Next Section Select}  {set func "nextSectionSelect"}
  352.     {Prev Section Select}  {set func "prevSectionSelect"}
  353.     {Next Subsection}  {set func "nextSubsection"}
  354.     {Prev Subsection}  {set func "prevSubsection"}
  355.     {Next Subsection Select}  {set func "nextSubsectionSelect"}
  356.     {Prev Subsection Select}  {set func "prevSubsectionSelect"}
  357.     default {set func $item}
  358.     }
  359.     eval $func
  360. }
  361.  
  362. # Return the "LaTeX Utilities" submenu:
  363.  
  364. set "menu::proc(LaTeX Utilities)" TeX::mp::latexUtils
  365. set "menu::otherflags(LaTeX Utilities)" {-M TeX -m}
  366. set "menu::items(LaTeX Utilities)" {
  367.     {Delete Template Stops}
  368.     {Delete Comments}
  369.     "(-"
  370.     {Convert Quotes}
  371.     {Convert Dollar Signs}
  372.     "(-"
  373.     {Short LaTeX Menu}
  374.     {AMS-LaTeX}
  375. }
  376. #        {<U<O/CChoose Command…}
  377. #        "(-"
  378.  
  379. proc TeX::mp::latexUtils {submenu item} {
  380.     switch $item {
  381.     {Choose Command}  {set func {chooseCommand [getLaTeXMenu]}}
  382.     {Insert Reference}  {set func "insertReference"}
  383.     {Delete Template Stops}  {set func "ring::clear"}
  384.     {Delete Comments}  {set func "deleteComments"}
  385.     {Convert Quotes}  {set func "convertQuotes"}
  386.     {Convert Dollar Signs}  {set func "convertDollarSigns"}
  387.     {Short LaTeX Menu}  {set func "toggleLaTeXMenus"}
  388.     {AMS-LaTeX}  {set func "toggleAMSLaTeX"}
  389.     default {set func "TeX::[join $item {}]"}
  390.     }
  391.     eval $func
  392. }
  393.  
  394. # Return the "Documents" submenu:
  395. set "menu::proc(Documents)" TeX::mp::documents
  396. set "menu::otherflags(Documents)" {-M TeX -m}
  397. set "menu::items(Documents)" [list \
  398.   {<U<O/NNew Document…} \
  399.   {Menu -n "Insert Document" {}} \
  400.   "(-" \
  401.   "options…" \
  402.   "<B<I/Uusepackage" \
  403.   {Menu -n "Packages" {}} \
  404.   "(-" \
  405.   "filecontents…" \
  406.   {filecontents All} \
  407.   "(-" \
  408.   {Rebuild Documents Submenu} \
  409.   ]
  410. set menu::which_subs(Documents) [list "Insert Document" "Packages"]
  411. menu::buildProc Packages TeX::sub::Packages
  412.  
  413. set "menu::proc(Insert Document)" TeX::mp::documents
  414. set "menu::otherflags(Insert Document)" {-M TeX -m}
  415. set "menu::items(Insert Document)" {
  416.     "article"
  417.     "report"
  418.     "book"
  419.     "letter"
  420.     "slides"
  421.     "other…"
  422. }
  423.  
  424.  
  425. proc TeX::mp::documents {submenu item} {
  426.     switch $item {
  427.     {New Document}  {set func "newLaTeXDocument"}
  428.     {article}  {set func "articleDocumentclass"}
  429.     {report}  {set func "reportDocumentclass"}
  430.     {book}  {set func "bookDocumentclass"}
  431.     {letter}  {set func "letterDocumentclass"}
  432.     {slides}  {set func "slidesDocumentclass"}
  433.     {other}  {set func "otherDocumentclass"}
  434.     {usepackage} {insertPackage ""; return}
  435.     {filecontents All} {set func "filecontentsAll"}
  436.     {Rebuild Documents Submenu}  {
  437.         global packagesSubmenuItems
  438.         set packagesSubmenuItems ""
  439.         message "Rebuilding the Documents submenu…"
  440.         menu::buildSome Documents
  441.         message ""
  442.         return
  443.     }
  444.     default {set func $item}
  445.     }
  446.     eval $func
  447. }
  448. proc TeX::sub::Packages {} {
  449.     global TeXmodeVars
  450.     if { $TeXmodeVars(buildPkgsSubmenu) } {
  451.     global packagesSubmenuItems
  452.     if { ![info exists packagesSubmenuItems] || $packagesSubmenuItems == "" } {
  453.         global latexPackages
  454.         set folders [buildTeXSearchPath 0]
  455.         set packagesSubmenuItems \
  456.           [menu::buildHierarchy $folders "Packages" TeX::mp::package latexPackages ".sty"]
  457.     }
  458.     return $packagesSubmenuItems
  459.     } else {
  460.     catch {unset packagesSubmenuItems}
  461.     return ""
  462.     }
  463. }
  464. proc TeX::mp::package {submenu pkgName} {
  465.     global latexPackages
  466.     # See latexMacros.tcl for definition of 'insertPackage':
  467.     insertPackage [file tail [file rootname $latexPackages([file join $submenu $pkgName])]]
  468. }
  469.  
  470. # Return the "Page Layout" submenu:
  471.  
  472. set "menu::otherflags(Page Layout)" {-M TeX -m}
  473. set "menu::items(Page Layout)"  {
  474.     "maketitle"
  475.     "(-"
  476.     "abstract"
  477.     "titlepage"
  478.     "(-"
  479.     "pagestyle…"
  480.     "thispagestyle…"
  481.     "pagenumbering…"
  482.     "(-"
  483.     "twocolumn"
  484.     "onecolumn"
  485. }
  486.  
  487.  
  488. # Return the "Sectioning" submenu:
  489.  
  490. set menu::proc(Sectioning) TeX::mp::sectioning
  491. set menu::otherflags(Sectioning) {-M TeX -m}
  492.  
  493. # need to integrate these two
  494. set menu::items(Sectioning) {
  495.     "<Spart"
  496.     "<S<Upart*"
  497.     "<Spart with label"
  498.     "<E<Schapter"
  499.     "<S<Uchapter*"
  500.     "<Schapter with label"
  501.     "<E<Ssection"
  502.     "<S<Usection*"
  503.     "<Ssection with label"
  504.     "<E<Ssubsection"
  505.     "<S<Usubsection*"
  506.     "<Ssubsection with label"
  507.     "<E<Ssubsubsection"
  508.     "<S<Usubsubsection*"
  509.     "<Ssubsubsection with label"
  510.     "<E<Sparagraph"
  511.     "<S<Uparagraph*"
  512.     "<Sparagraph with label"
  513.     "<E<Ssubparagraph"
  514.     "<S<Usubparagraph*"
  515.     "<Ssubparagraph with label"
  516.     "(-"
  517.     "appendix"
  518. }
  519.  
  520. proc TeX::mp::sectioning {submenu item} {
  521.     if [regexp (part|chapter|section|paragraph) $item] {
  522.     eval sectioning $item
  523.     } else {
  524.     eval $item
  525.     }
  526. }
  527. proc TeX::mp::sectioning {submenu item} {
  528.     if {$item == "appendix"}  {
  529.     appendix
  530.     } else {
  531.     switch $item {
  532.         {part with label}  {
  533.         set secName "part"
  534.         set secLabel "part."
  535.         }
  536.         {chapter with label}  {
  537.         set secName "chapter"
  538.         set secLabel "chap."
  539.         }
  540.         {section with label}  {
  541.         set secName "section"
  542.         set secLabel "sec."
  543.         }
  544.         {subsection with label}  {
  545.         set secName "subsection"
  546.         set secLabel "subsec."
  547.         }
  548.         {subsubsection with label}  {
  549.         set secName "subsubsection"
  550.         set secLabel "subsubsec."
  551.         }
  552.         {paragraph with label}  {
  553.         set secName "paragraph"
  554.         set secLabel "par."
  555.         }
  556.         {subparagraph with label}  {
  557.         set secName "subparagraph"
  558.         set secLabel "subpar."
  559.         }
  560.         default {
  561.         set secName  $item
  562.         set secLabel ""
  563.         }
  564.     }
  565.     append leftWrap [openingCarriageReturn] \
  566.       "\\${secName}\{"
  567.     if {$secLabel == ""} {
  568.         append rightWrap "\}\r"
  569.     } else {
  570.         append rightWrap "\}\\label\{" $secLabel "••\}\r"
  571.     }
  572.     #if [regexp (part|chapter) $item] {
  573.     #    append rightWrap "\\thispagestyle{empty}\r"
  574.     #}
  575.     append rightWrap "••" [closingCarriageReturn]
  576.     if {$secLabel == ""} {
  577.         if [elec::Wrap $leftWrap $rightWrap] {
  578.         message "sectioning done" 
  579.         } else { 
  580.         message "enter the $secName" 
  581.         }
  582.     } else {
  583.         if [elec::Wrap $leftWrap $rightWrap] {
  584.         message "enter the label" 
  585.         } else { 
  586.         message "enter the $secName, press <tab>, enter the label" 
  587.         }
  588.     }
  589.     }
  590. }
  591.  
  592. # Return the "Text Style" submenu:
  593. set "menu::otherflags(Text Style)" {-M TeX -m}
  594. set "menu::items(Text Style)"  {
  595.     "<S<B<I/Eemph"
  596.     "<S<U<B<I/Eem"
  597.     "<B<O/Uunderline"
  598.     "(-"
  599.     "<Supshape"
  600.     "<Stextup"
  601.     "<E<S<B<I/Itextit"
  602.     "<S<U<B<I/Iitshape"
  603.     "<E<S<B<I/Stextsl"
  604.     "<S<U<B<I/Sslshape"
  605.     "<E<S<B<I/Htextsc"
  606.     "<S<U<B<I/Hscshape"
  607.     "(-"
  608.     "<Smdseries"
  609.     "<Stextmd"
  610.     "<E<S<B<I/Btextbf"
  611.     "<S<U<B<I/Bbfseries"
  612.     "(-"
  613.     "<S<B<I/Rtextrm"
  614.     "<S<U<B<I/Rrmfamily"
  615.     "<E<S<B<I/Wtextsf"
  616.     "<S<U<B<I/Wsffamily"
  617.     "<E<S<B<I/Ytexttt"
  618.     "<S<U<B<I/Yttfamily"
  619.     "(-"
  620.     "<Snormalfont"
  621.     "<Stextnormal"
  622. }
  623.  
  624.  
  625. # Return the "Text Size" submenu:
  626. proc TeX::mp::textSize {menu item} {
  627.     doTextSize $item
  628. }
  629.  
  630. proc TeX::mp::textCommands {menu item} {
  631.     insertObject "\\${item}"
  632. }
  633. set "menu::proc(Text Commands)" TeX::mp::textCommands
  634. set "menu::otherflags(Text Commands)" {-M TeX -m}
  635. set "menu::items(Text Commands)" {
  636.     "textsuperscript"
  637.     "textcircled"
  638.     "(-"
  639.     "textcompwordmark"
  640.     "textvisiblespace"
  641.     "(-"
  642.     "!—textemdash"
  643.     "!–textendash"
  644.     "!¡textexclamdown"
  645.     "!¿textquestiondown"
  646.     "!“textquotedblleft"
  647.     "!”textquotedblright"
  648.     "!‘textquoteleft"
  649.     "!’textquoteright"
  650.     "(-"
  651.     "textbullet"
  652.     "textperiodcentered"
  653.     "(-"
  654.     "textbackslash"
  655.     "textbar"
  656.     "textless"
  657.     "textgreater"
  658.     "(-"
  659.     "textasciicircum"
  660.     "textasciitilde"
  661.     "(-"
  662.     "textregistered"
  663.     "texttrademark"
  664. }
  665.  
  666. # Return the "International" submenu:
  667. set menu::proc(International) TeX::mp::internat
  668. set menu::otherflags(International) {-M TeX -m}
  669. set menu::items(International) {
  670.     {ò}
  671.     {ó}
  672.     {ô}
  673.     {ö}
  674.     {õ}
  675.     "(-"
  676.     {ç}
  677.     {œ}
  678.     {æ}
  679.     {å}
  680.     {ø}
  681.     "(-"
  682.     {Ç}
  683.     {Œ}
  684.     {Æ}
  685.     {Å}
  686.     {Ø}
  687.     "(-"
  688.     ss
  689.     SS
  690.     "(-"
  691.     {¿}
  692.     {¡}
  693. }
  694. proc TeX::mp::internat {menu item} {
  695.     $item
  696. }
  697.  
  698. # Return the "Environments" submenu:
  699.  
  700. set menu::proc(Environments) TeX::mp::envs
  701. set menu::otherflags(Environments) {-M TeX -m}
  702. set menu::items(Environments) {
  703.     "<I/kitemize…"
  704.     "<U<I/kenumerate…"
  705.     "<B<I/kdescription…"
  706.     "thebibliography…"
  707.     "(-"
  708.     "<I/lslide"
  709.     "<U<I/loverlay"
  710.     "<B<I/lnote"
  711.     "(-"
  712.     "<I/mfigure"
  713.     "<U<I/mtable"
  714.     "<B<I/mtabular…"
  715.     "(-"
  716.     "<I/nverbatim"
  717.     "<U<I/nquote"
  718.     "<B<I/nquotation"
  719.     "verse"
  720.     "(-"
  721.     "<I/ocenter"
  722.     "<U<I/oflushleft"
  723.     "<B<I/oflushright"
  724.     "(-"
  725.     {<U<O/EChoose Environment…}
  726. }
  727. proc TeX::mp::envs {submenu item} {
  728.     switch $item {
  729.     {Choose Environment}  {set func chooseEnvironment}
  730.     default {set func $item}
  731.     }
  732.     eval $func
  733. }
  734.  
  735. # Return the "Boxes" submenu:
  736.  
  737. set "menu::otherflags(Boxes)" {-M TeX -m}
  738. set "menu::items(Boxes)"  {
  739.     "<B<I/Mmbox"
  740.     "makebox"
  741.     "fbox"
  742.     "framebox"
  743.     "(-"
  744.     "newsavebox"
  745.     "sbox"
  746.     "savebox"
  747.     "usebox"
  748.     "(-"
  749.     "raisebox"
  750.     "(-"
  751.     "parbox"
  752.     "minipage"
  753.     "(-"
  754.     "rule"
  755. }
  756.  
  757. # Return the "Miscellaneous" submenu:
  758. set menu::proc(Miscellaneous) TeX::mp::misc
  759. set menu::otherflags(Miscellaneous) {-M TeX -m}
  760. set menu::items(Miscellaneous) {
  761.     "<B<I/Vverb"
  762.     "<B<I/Ffootnote"
  763.     {<B<I/Nmarginal note}
  764.     "(-"
  765.     "<B<I/Llabel"
  766.     "<B<I/Xref"
  767.     "eqref"
  768.     "<B<I/Ppageref"
  769.     "<B<I/Ccite"
  770.     "<U<B<I/Cnocite"
  771.     "(-"
  772.     "<B<I/Jitem"
  773.     "(-"
  774.     "<B<I/'quotes"
  775.     {<U<B<I/'double quotes}
  776.     "(-"
  777.     {TeX logo}
  778.     {LaTeX logo}
  779.     {LaTeX2e logo}
  780.     "date"
  781.     "(-"
  782.     "!†dag"
  783.     "ddag"
  784.     {!§section mark}
  785.     {!¶paragraph mark}
  786.     "!©copyright"
  787.     "!£pounds"
  788. }
  789. proc TeX::mp::misc {submenu item} {
  790.     switch $item {
  791.     {marginal note}  {set func "marginalNote"}
  792.     "item" {set func "insertItem"}
  793.     "label" {set func "insertLabel"}
  794.     {double quotes}  {set func "dblQuotes"}
  795.     {TeX logo}  {set func "texLogo"}
  796.     {LaTeX logo}  {set func "latexLogo"}
  797.     {LaTeX2e logo}  {set func "latex2eLogo"}
  798.     "date" {set func "today"}
  799.     {section mark}  {set func "sectionMark"}
  800.     {paragraph mark}  {set func "paragraphMark"}
  801.     default {set func $item}
  802.     }
  803.     eval $func
  804. }
  805.  
  806. # Return a "Math Modes" submenu (called below and in latexKeys.tcl):
  807. set "menu::proc(Math Modes)" TeX::mp::mathModes
  808. set "menu::otherflags(Math Modes)" {-M TeX -m}
  809. proc TeX::sub::MathModes {} {
  810.     global TeXmodeVars menu::items
  811.     if {$TeXmodeVars(useDollarSigns)} {
  812.     Bind '4' <zc> texMath "TeX"
  813.     Bind '4' <zoc> texDisplaymath "TeX"
  814.     set "menu::items(Math Modes)" {
  815.         {<B<O/MTeX math}
  816.         {<B<I<O/MTeX displaymath}
  817.         "(-"
  818.         {LaTeX math}
  819.         {LaTeX displaymath}
  820.     }
  821.     } else {
  822.     Bind '4' <zc> latexMath "TeX"
  823.     Bind '4' <zoc> latexDisplaymath "TeX"
  824.     set "menu::items(Math Modes)" {
  825.         {TeX math}
  826.         {TeX displaymath}
  827.         "(-"
  828.         {<B<O/MLaTeX math}
  829.         {<B<I<O/MLaTeX displaymath}
  830.     }
  831.     }
  832. }
  833. proc TeX::mp::mathModes {submenu item} {
  834.     switch $item {
  835.     {TeX math}  {set func "texMath"}
  836.     {TeX displaymath}  {set func "texDisplaymath"}
  837.     {LaTeX math}  {set func "latexMath"}
  838.     {LaTeX displaymath}  {set func "latexDisplaymath"}
  839.     default {set func $item}
  840.     }
  841.     eval $func
  842. }
  843.  
  844. proc TeX::mp::mathStyle {submenu item} {
  845.     switch $item {
  846.     mathbb {doUppercaseMathStyle mathbb "math blackboard bold"}
  847.     mathfrak {doMathStyle mathfrak "math fraktur"}
  848.     mathit {doMathStyle mathit "math italic"}
  849.     mathrm {doMathStyle mathrm "math roman"}
  850.     mathbf {doMathStyle mathbf "math bold"}
  851.     mathsf {doMathStyle mathsf "math sans serif"}
  852.     mathtt {doMathStyle mathtt "math typewriter"}
  853.     mathcal {doUppercaseMathStyle mathcal "math calligraphic"}
  854.     displaystyle {doMathStyle displaystyle "display style"}
  855.     textstyle {doMathStyle textstyle "text style"}
  856.     scriptstyle {doMathStyle scriptstyle "script style"}
  857.     scriptscriptstyle {doMathStyle scriptscriptstyle "scriptscript style"}
  858.     }
  859. }
  860.  
  861. # Return the "Math Style" submenu:
  862. set "menu::proc(Math Style)" TeX::mp::mathStyle
  863. set "menu::otherflags(Math Style)" {-M TeX -m}
  864. set "menu::proc(Text Size)" TeX::mp::textSize
  865. set "menu::otherflags(Text Size)" {-M TeX -m}
  866. proc toggleAMSLaTeXmenus {} {
  867.     global useAMSLaTeX menu::items
  868.     if { $useAMSLaTeX } {
  869.     set "menu::items(Math Style)" {
  870.         "<B<I<O/Imathit"
  871.         "<B<I<O/Rmathrm"
  872.         "<B<I<O/Bmathbf"
  873.         "<B<I<O/Wmathsf"
  874.         "<B<I<O/Ymathtt"
  875.         "<B<I<O/Cmathcal"
  876.         "(-"
  877.         "<B<I<O/Zmathbb"
  878.         "mathfrak"
  879.         "(-"
  880.         "<B<I<O/Ddisplaystyle"
  881.         "<B<I<O/Ttextstyle"
  882.         "<B<I<O/Sscriptstyle"
  883.         "scriptscriptstyle"
  884.     }
  885.     set "menu::items(Text Size)" {
  886.         "<B<I/1Tiny"
  887.         "<B<I/2tiny"
  888.         "<B<I/3SMALL"
  889.         "<B<I/4Small"
  890.         "<B<I/5small"
  891.         "normalsize"
  892.         "<B<I/6large"
  893.         "<B<I/7Large"
  894.         "<B<I/8LARGE"
  895.         "<B<I/9huge"
  896.         "<B<I/0Huge"
  897.     }
  898.     set "menu::items(Math Environments)" {
  899.         "<I/imath"
  900.         "(-"
  901.         "<U<I/idisplaymath"
  902.         "<B<I/iequation"
  903.         "(-"
  904.         "<B<I/jalign…"
  905.         "<U<I/jalign*…"
  906.         "split"
  907.         "gather"
  908.         "multline"
  909.         "(-"
  910.         "<I/jarray…"
  911.         "(-"
  912.         {<U<O/EChoose Environment…}
  913.     }
  914.     } else {
  915.     set "menu::items(Math Style)" {
  916.         "<B<I<O/Imathit"
  917.         "<B<I<O/Rmathrm"
  918.         "<B<I<O/Bmathbf"
  919.         "<B<I<O/Wmathsf"
  920.         "<B<I<O/Ymathtt"
  921.         "<B<I<O/Cmathcal"
  922.         "(-"
  923.         "<B<I<O/Ddisplaystyle"
  924.         "<B<I<O/Ttextstyle"
  925.         "<B<I<O/Sscriptstyle"
  926.         "scriptscriptstyle"
  927.     }
  928.     set "menu::items(Text Size)" {
  929.         "<B<I/1tiny"
  930.         "<B<I/2scriptsize"
  931.         "<B<I/3footnotesize"
  932.         "<B<I/4small"
  933.         "<B<I/5normalsize"
  934.         "<B<I/6large"
  935.         "<B<I/7Large"
  936.         "<B<I/8LARGE"
  937.         "<B<I/9huge"
  938.         "<B<I/0Huge"
  939.     }
  940.     set "menu::items(Math Environments)" {
  941.         "<I/imath"
  942.         "(-"
  943.         "<U<I/idisplaymath"
  944.         "<B<I/iequation"
  945.         "(-"
  946.         "<B<I/jeqnarray…"
  947.         "<U<I/jeqnarray*…"
  948.         "(-"
  949.         "<I/jarray…"
  950.         "(-"
  951.         {<U<O/EChoose Environment…}
  952.     }
  953.     }
  954. }
  955.  
  956. # Return the "Math Environments" submenu:
  957. set "menu::proc(Math Environments)" TeX::mp::mathEnvs
  958. set "menu::otherflags(Math Environments)" {-M TeX -m}
  959. proc TeX::mp::mathEnvs {submenu item} {
  960.     switch $item {
  961.     "array" - "eqnarray\*" - "eqnarray" {
  962.         set func "TeXmathenv $item"
  963.     }
  964.     "equation" - "align" - "split" - "gather" - "multline" {
  965.         set func "mathEnvironment $item"
  966.     }
  967.     {Choose Environment}  {set func chooseEnvironment}
  968.     default {set func $item}
  969.     }
  970.     eval $func
  971. }
  972.  
  973. #--------------------------------------------------------------------------
  974. # Adding a "Theorem" submenu: many thanks to...
  975. #
  976. # Paul Gastin
  977. # LIAFA
  978. # Universite Paris 7
  979. # 2, place Jussieu
  980. # F-75251 Paris Cedex 05
  981. # email : Paul.Gastin@liafa.jussieu.fr
  982. # www : http://www.liafa.jussieu.fr/~gastin
  983. #--------------------------------------------------------------------------
  984.  
  985. # Return the "Theorem" submenu:
  986. set menu::proc(Theorem) TeX::mp::theorem
  987. set menu::otherflags(Theorem) {-M TeX -m}
  988. set menu::items(Theorem) {
  989.     "<E<Sdefinition"
  990.     "<Sdefinition with label"
  991.     "<E<Sremark"
  992.     "<Sremark with label"
  993.     "(-"
  994.     "<E<Slemma"
  995.     "<Slemma with label"
  996.     "<E<Sproposition"
  997.     "<Sproposition with label"
  998.     "<E<Stheorem"
  999.     "<Stheorem with label"
  1000.     "<E<Scorollary"
  1001.     "<Scorollary with label"
  1002.     "(-"
  1003.     "claim"
  1004.     "<E<Sclaimno"
  1005.     "<Sclaimno with label"
  1006.     "(-"
  1007.     "proof"
  1008.     "proofof"
  1009. }
  1010.  
  1011. proc TeX::mp::theorem {submenu item} {
  1012.     if {$item == "proofof"} {
  1013.     if {[wrapStructure "\\begin\{proofof\}\{••\}" "" \
  1014.       "\\end\{proofof\}\r••"] } {
  1015.         set msgText "selection wrapped, enter ref of proofof environment"
  1016.     } else {
  1017.         set msgText "enter ref of proofof environment, press <tab>, enter the body of proofof environment"
  1018.     }
  1019.     } else {
  1020.     switch $item {
  1021.         {definition with label}  {
  1022.         set envName "definition"
  1023.         set envLabel "def."
  1024.         }
  1025.         {remark with label}  {
  1026.         set envName "remark"
  1027.         set envLabel "rem."
  1028.         }
  1029.         {lemma with label}  {
  1030.         set envName "lemma"
  1031.         set envLabel "lem."
  1032.         }
  1033.         {proposition with label}  {
  1034.         set envName "proposition"
  1035.         set envLabel "prop."
  1036.         }
  1037.         {theorem with label}  {
  1038.         set envName "theorem"
  1039.         set envLabel "thm."
  1040.         }
  1041.         {corollary with label}  {
  1042.         set envName "corollary"
  1043.         set envLabel "cor."
  1044.         }
  1045.         {claimno with label}  {
  1046.         set envName "claimno"
  1047.         set envLabel "claim."
  1048.         }
  1049.         default {
  1050.         set envName  $item
  1051.         set envLabel ""
  1052.         }
  1053.     }
  1054.     if {$envLabel == ""} {
  1055.         append begStruct "\\begin\{" $envName "\}"
  1056.         append endStruct "\\end\{" $envName "\}\r••"
  1057.         if [wrapStructure $begStruct "" $endStruct] {
  1058.         set msgText "selection wrapped"
  1059.         } else {
  1060.         set msgText "enter the body of $envName environment"
  1061.         }
  1062.     } else {
  1063.         append begStruct "\\begin\{" $envName "\}\\label\{" $envLabel "••\}"
  1064.         append endStruct "\\end\{" $envName "\}\r••"
  1065.         if [wrapStructure $begStruct "" $endStruct] {
  1066.         set msgText "selection wrapped, enter the label"
  1067.         } else {
  1068.         set msgText "enter the label, press <tab>, enter the body of $envName environment"
  1069.         }
  1070.     }
  1071.     }
  1072.     message $msgText
  1073. }
  1074.  
  1075. # Return the "Formulas" submenu:
  1076. set menu::proc(Formulas) TeX::mp::formulas
  1077. set menu::otherflags(Formulas) {-M TeX -m}
  1078. set menu::items(Formulas) {
  1079.     "subscript"
  1080.     "superscript"
  1081.     "(-"
  1082.     "<B<O/Ffrac"
  1083.     {<B<O/Rsqrt}
  1084.     {nth root}
  1085.     "(-"
  1086.     {<B<O/1one parameter…}
  1087.     {<B<O/2two parameters…}
  1088. }
  1089. proc TeX::mp::formulas {submenu item} {
  1090.     switch $item {
  1091.     {frac}  {set func "fraction"}
  1092.     {sqrt}  {set func "squareRoot"}
  1093.     {nth root}  {set func "nthRoot"}
  1094.     {one parameter}  {set func "oneParameter"}
  1095.     {two parameters}  {set func "twoParameters"}
  1096.     default {set func $item}
  1097.     }
  1098.     eval $func
  1099. }
  1100.  
  1101. proc TeX::mp::greek {submenu item} {
  1102.     checkMathMode $item 1; insertObject "\\$item"
  1103. }
  1104.  
  1105. # Return the "Greek" submenu:
  1106. set menu::proc(Greek) TeX::mp::greek
  1107. set menu::otherflags(Greek) {-M TeX -m}
  1108. set menu::items(Greek) {
  1109.     "alpha"
  1110.     "beta"
  1111.     "<SGamma"
  1112.     "<Sgamma"
  1113.     "<E<SDelta"
  1114.     "<Sdelta"
  1115.     "epsilon"
  1116.     "zeta"
  1117.     "eta"
  1118.     "<STheta"
  1119.     "<Stheta"
  1120.     "iota"
  1121.     "kappa"
  1122.     "<SLambda"
  1123.     "<Slambda"
  1124.     "mu"
  1125.     "nu"
  1126.     "<SXi"
  1127.     "<Sxi"
  1128.     "omicron"
  1129.     "<SPi"
  1130.     "<Spi"
  1131.     "rho"
  1132.     "<SSigma"
  1133.     "<Ssigma"
  1134.     "tau"
  1135.     "<SUpsilon"
  1136.     "<Supsilon"
  1137.     "<E<SPhi"
  1138.     "<Sphi"
  1139.     "chi"
  1140.     "<SPsi"
  1141.     "<Spsi"
  1142.     "<E<SOmega"
  1143.     "<Somega"
  1144.     "(-"
  1145.     "varepsilon"
  1146.     "vartheta"
  1147.     "varpi"
  1148.     "varrho"
  1149.     "varsigma"
  1150.     "varphi"
  1151. }
  1152.  
  1153. proc TeX::mp::binaryOperators {submenu item} {
  1154.     regsub "!." $item "" item
  1155.     if [regexp {[lr]hd$} $item] {
  1156.     if {![TeX::RequirePackage latexsym]} {return}
  1157.     }
  1158.     checkMathMode $item 1; insertObject "\\$item"
  1159. }
  1160.  
  1161. # Return the "Binary Operators" submenu:
  1162. set "menu::proc(Binary Operators)" TeX::mp::binaryOperators
  1163. set "menu::otherflags(Binary Operators)" {-M TeX -m}
  1164. set "menu::items(Binary Operators)" {
  1165.     "/+<I<U!±pm"
  1166.     "mp"
  1167.     "times"
  1168.     "!÷div"
  1169.     "ast"
  1170.     "star"
  1171.     "circ"
  1172.     "bullet"
  1173.     "cdot"
  1174.     "cap"
  1175.     "cup"
  1176.     "uplus"
  1177.     "sqcap"
  1178.     "sqcup"
  1179.     "vee"
  1180.     "wedge"
  1181.     "setminus"
  1182.     "(-"
  1183.     "diamond"
  1184.     "bigtriangleup"
  1185.     "bigtriangledown"
  1186.     "triangleleft"
  1187.     "triangleright"
  1188.     "lhd"
  1189.     "rhd"
  1190.     "unlhd"
  1191.     "unrhd"
  1192.     "(-"
  1193.     "oplus"
  1194.     "ominus"
  1195.     "otimes"
  1196.     "oslash"
  1197.     "odot"
  1198.     "(-"
  1199.     "bigcirc"
  1200.     "dagger"
  1201.     "ddagger"
  1202.     "amalg"
  1203.     "wr"
  1204. }
  1205.  
  1206. # Return the "Relations" submenu:
  1207. set menu::proc(Relations) TeX::mp::relations
  1208. set menu::otherflags(Relations) {-M TeX -m}
  1209. set menu::items(Relations) {
  1210.     "<S!≥geq"
  1211.     "<S!≤leq"
  1212.     "<E<Ssucc"
  1213.     "<Sprec"
  1214.     "<E<Ssucceq"
  1215.     "<Spreceq"
  1216.     "<E<S!»gg"
  1217.     "<S!«ll"
  1218.     "<E<Ssupset"
  1219.     "<Ssubset"
  1220.     "<E<Ssupseteq"
  1221.     "<Ssubseteq"
  1222.     "<E<Ssqsupset"
  1223.     "<Ssqsubset"
  1224.     "<E<Ssqsupseteq"
  1225.     "<Ssqsubseteq"
  1226.     "<E<Sni"
  1227.     "<Sin"
  1228.     "<E<Sdashv"
  1229.     "<Svdash"
  1230.     "(-"
  1231.     "equiv"
  1232.     "sim"
  1233.     "simeq"
  1234.     "asymp"
  1235.     "!≈approx"
  1236.     "cong"
  1237.     "/=<I!≠neq"
  1238.     "doteq"
  1239.     "propto"
  1240.     "(-"
  1241.     "models"
  1242.     "perp"
  1243.     "mid"
  1244.     "parallel"
  1245.     "bowtie"
  1246.     "join"
  1247.     "smile"
  1248.     "frown"
  1249. }
  1250. proc TeX::mp::relations {submenu item} {
  1251.     # workaround alpha menu bug
  1252.     regsub "!." $item "" item
  1253.     if {[lsearch -exact "join sqsubset sqsupset" $item] != -1} {
  1254.     if {![TeX::RequirePackage latexsym]} {return}
  1255.     }
  1256.     checkMathMode $item 1; insertObject "\\$item"
  1257. }
  1258.  
  1259. # Return the "Arrows" submenu:
  1260. set menu::otherflags(Arrows) {-M TeX -m}
  1261. set menu::proc(Arrows) TeX::mp::arrows
  1262. set menu::items(Arrows) {
  1263.     "<SLeftarrow"
  1264.     "<Sleftarrow"
  1265.     "<E<SRightarrow"
  1266.     "<Srightarrow"
  1267.     "<E<SLeftrightarrow"
  1268.     "<Sleftrightarrow"
  1269.     "<E<SLongleftarrow"
  1270.     "<Slongleftarrow"
  1271.     "<E<SLongrightarrow"
  1272.     "<Slongrightarrow"
  1273.     "<E<SLongleftrightarrow"
  1274.     "<Slongleftrightarrow"
  1275.     "(-"
  1276.     "<SUparrow"
  1277.     "<Suparrow"
  1278.     "<E<SDownarrow"
  1279.     "<Sdownarrow"
  1280.     "<E<SUpdownarrow"
  1281.     "<Supdownarrow"
  1282.     "(-"
  1283.     "mapsto"
  1284.     "longmapsto"
  1285.     "leadsto"
  1286.     "(-"
  1287.     "leftharpoonup"
  1288.     "rightharpoonup"
  1289.     "leftharpoondown"
  1290.     "rightharpoondown"
  1291.     "rightleftharpoons"
  1292.     "hookleftarrow"
  1293.     "hookrightarrow"
  1294.     "nearrow"
  1295.     "searrow"
  1296.     "swarrow"
  1297.     "nwarrow"
  1298. }
  1299.  
  1300. proc TeX::mp::arrows {submenu item} {
  1301.     checkMathMode $item 1; insertObject "\\$item"
  1302. }
  1303.  
  1304. # Return the "Dots" submenu:
  1305. set menu::proc(Dots) TeX::mp::generalMath
  1306. set menu::otherflags(Dots) {-M TeX -m}
  1307. set menu::items(Dots) {
  1308.     "bullet"
  1309.     "cdot"
  1310.     "(-"
  1311.     "ldots"
  1312.     "cdots"
  1313.     "vdots"
  1314.     "ddots"
  1315. }
  1316.  
  1317. # Return the "Symbols" submenu:
  1318. set menu::proc(Symbols) TeX::mp::generalMath
  1319. set menu::otherflags(Symbols) {-M TeX -m}
  1320. set menu::items(Symbols) {
  1321.     "aleph"
  1322.     "hbar"
  1323.     "imath"
  1324.     "jmath"
  1325.     "ell"
  1326.     "wp"
  1327.     "Re"
  1328.     "Im"
  1329.     "mho"
  1330.     "(-"
  1331.     "angle"
  1332.     "backslash"
  1333.     "bot"
  1334.     "/0<Iemptyset"
  1335.     "exists"
  1336.     "forall"
  1337.     "!∞infty"
  1338.     "nabla"
  1339.     "!¬neg"
  1340.     "!∂partial"
  1341.     "prime"
  1342.     "!√surd"
  1343.     "top"
  1344.     "(-"
  1345.     "Box"
  1346.     "Diamond"
  1347.     "triangle"
  1348.     "clubsuit"
  1349.     "diamondsuit"
  1350.     "heartsuit"
  1351.     "spadesuit"
  1352.     "(-"
  1353.     "flat"
  1354.     "natural"
  1355.     "sharp"
  1356. }
  1357.  
  1358. proc TeX::mp::generalMath {submenu item} {
  1359.     if {[lsearch -exact "mho Box Diamond" $item] != -1} {
  1360.     if {![TeX::RequirePackage latexsym]} {return}
  1361.     }
  1362.     switch $item {
  1363.     "lim" - "inf" - "liminf" - "limsup" - "max" - "min" - "sup" {
  1364.         checkMathMode $item 1
  1365.         if {[elec::Wrap "\\${item}_{" "}••"]} {
  1366.         message "limit set"
  1367.         } else {
  1368.         message "enter limit"
  1369.         }
  1370.     }
  1371.     "pmod" {
  1372.         checkMathMode "pmod" 1
  1373.         if {[elec::Wrap "\\pmod{" "}••"]} {
  1374.         message "parenthesized mod set"
  1375.         } else {
  1376.         message "enter formula"
  1377.         }
  1378.     }
  1379.     "ldots" {insertObject "\\ldots"}
  1380.     default {
  1381.         checkMathMode $item 1; insertObject "\\$item"
  1382.     }
  1383.     }
  1384. }
  1385.  
  1386. # Return the "Functions" submenu:
  1387. set menu::proc(Functions) TeX::mp::generalMath
  1388. set menu::otherflags(Functions) {-M TeX -m}
  1389. set menu::items(Functions) {
  1390.     "arccos"
  1391.     "arcsin"
  1392.     "arctan"
  1393.     "arg"
  1394.     "cos"
  1395.     "cosh"
  1396.     "cot"
  1397.     "coth"
  1398.     "csc"
  1399.     "deg"
  1400.     "det"
  1401.     "dim"
  1402.     "exp"
  1403.     "gcd"
  1404.     "hom"
  1405.     "inf"
  1406.     "ker"
  1407.     "lg"
  1408.     "<B<O/Llim"
  1409.     "liminf"
  1410.     "limsup"
  1411.     "ln"
  1412.     "log"
  1413.     "max"
  1414.     "min"
  1415.     "Pr"
  1416.     "sec"
  1417.     "sin"
  1418.     "sinh"
  1419.     "sup"
  1420.     "tan"
  1421.     "tanh"
  1422.     "(-"
  1423.     "bmod"
  1424.     "pmod"
  1425. }
  1426.  
  1427. # Return the "Large Operators" submenu:
  1428. set "menu::otherflags(Large Operators)" {-M TeX -m}
  1429. set "menu::items(Large Operators)"  {
  1430.     "<B<O/Ssum"
  1431.     "<B<O/Pprod"
  1432.     "coprod"
  1433.     "<B<O/Iint"
  1434.     "oint"
  1435.     "(-"
  1436.     "bigcup"
  1437.     "bigcap"
  1438.     "bigsqcup"
  1439.     "bigvee"
  1440.     "bigwedge"
  1441.     "bigodot"
  1442.     "bigotimes"
  1443.     "bigoplus"
  1444.     "biguplus"
  1445. }
  1446.  
  1447. # Return the "Delimiters" submenu:
  1448. set menu::proc(Delimiters) TeX::mp::delimiters
  1449. set menu::otherflags(Delimiters) {-M TeX -m}
  1450. set menu::items(Delimiters) {
  1451.     "parentheses"
  1452.     "brackets"
  1453.     "braces"
  1454.     {vertical bars}
  1455.     {other delims…}
  1456.     "(-"
  1457.     {half-open interval}
  1458.     {half-closed interval}
  1459.     "(-"
  1460.     {<Smulti-line big parentheses}
  1461.     {<Sbig parentheses}
  1462.     {<E<Smulti-line big brackets}
  1463.     {<Sbig brackets}
  1464.     {<E<Smulti-line big braces}
  1465.     {<Sbig braces}
  1466.     {<E<Smulti-line big vertical bars}
  1467.     {<Sbig vertical bars}
  1468.     {<E<Sother multi-line big delims…}
  1469.     {<Sother big delims…}
  1470.     "(-"
  1471.     {<Smulti-line big left brace}
  1472.     {<Sbig left brace}
  1473.     {<E<Sother multi-line mixed big delims…}
  1474.     {<Sother mixed big delims…}
  1475. }
  1476. proc TeX::mp::delimiters {submenu item} {
  1477.     switch $item {
  1478.     {vertical bars}  {set func "absoluteValue"}
  1479.     {other delims}  {set func "otherDelims"}
  1480.     {half-open interval}  {set func "half-openInterval"}
  1481.     {half-closed interval}  {set func "half-closedInterval"}
  1482.     {big parentheses}  {set func "bigParens"}
  1483.     {multi-line big parentheses}  {set func "multiBigParens"}
  1484.     {big brackets}  {set func "bigBrackets"}
  1485.     {multi-line big brackets}  {set func "multiBigBrackets"}
  1486.     {big braces}  {set func "bigBraces"}
  1487.     {multi-line big braces}  {set func "multiBigBraces"}
  1488.     {big vertical bars}  {set func "bigAbsValue"}
  1489.     {multi-line big vertical bars}  {set func "multiBigAbsValue"}
  1490.     {other big delims}  {set func "otherBigDelims"}
  1491.     {other multi-line big delims}  {set func "otherMultiBigDelims"}
  1492.     {big left brace}  {set func "bigLeftBrace"}
  1493.     {multi-line big left brace}  {set func "multiBigLeftBrace"}
  1494.     {other mixed big delims}  {set func "otherMixedBigDelims"}
  1495.     {other multi-line mixed big delims}  {set func "otherMultiMixedBigDelims"}
  1496.     default {set func $item}
  1497.     }
  1498.     eval $func
  1499. }
  1500.  
  1501. # Return the "Math Accents" submenu:
  1502. set "menu::otherflags(Math Accents)" {-M TeX -m}
  1503. set "menu::items(Math Accents)"  {
  1504.     "<B<O/Aacute"
  1505.     "<B<O/Bbar"
  1506.     "breve"
  1507.     "<B<O/Ccheck"
  1508.     "<B<O/Ddot"
  1509.     "ddot"
  1510.     "<B<O/Ggrave"
  1511.     "<B<O/Hhat"
  1512.     "<B<O/Ttilde"
  1513.     "<B<O/Vvec"
  1514.     "(-"
  1515.     "widehat"
  1516.     "widetilde"
  1517.     "(-"
  1518.     "imath"
  1519.     "jmath"
  1520. }
  1521.  
  1522. # Return the "Grouping" submenu:
  1523. set "menu::otherflags(Grouping)" {-M TeX -m}
  1524. set "menu::items(Grouping)"  {
  1525.     "<B<O/Uunderline"
  1526.     "<B<O/Ooverline"
  1527.     "<B<I<O/Uunderbrace"
  1528.     "<B<I<O/Ooverbrace"
  1529.     "(-"
  1530.     "overrightarrow"
  1531.     "overleftarrow"
  1532.     "(-"
  1533.     "stackrel"
  1534. }
  1535.  
  1536. # Return the "Spacing" submenu:
  1537. set menu::proc(Spacing) TeX::mp::spacing
  1538. set menu::otherflags(Spacing) {-M TeX -m}
  1539. set menu::items(Spacing) {
  1540.     {neg thin}
  1541.     "thin"
  1542.     "medium"
  1543.     "thick"
  1544.     "(-"
  1545.     "quad"
  1546.     "qquad"
  1547.     "(-"
  1548.     "hspace"
  1549.     "vspace"
  1550.     "(-"
  1551.     "hfill"
  1552.     "vfill"
  1553.     "(-"
  1554.     "smallskip"
  1555.     "medskip"
  1556.     "bigskip"
  1557. }
  1558. proc TeX::mp::spacing {submenu item} {
  1559.     switch $item {
  1560.     {neg thin}  {set func "negThin"}
  1561.     default {set func $item}
  1562.     }
  1563.     eval $func
  1564. }
  1565.  
  1566.  
  1567.  
  1568.  
  1569.  
  1570.